home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr28 / rzsplt21.zip / RZSPLIT.DOC < prev    next >
Text File  |  1995-03-09  |  5KB  |  144 lines

  1.  
  2. RZSplit v2.1 - A DOS utility to split files to make them fit on a floppy.
  3. ============
  4.  
  5.     The utility RZSplit is actually 2 programs in one.  It will not only
  6. split a files into smaller files, but also create your original file from
  7. the smaller files.
  8.  
  9. I have tried to "split" ZIP files using other programs, but none of them
  10. worked if a file inside your ZIP file was bigger than 1.44M.  This program 
  11. will change all that.
  12.  
  13. This utility works with ANY kind of DOS file. (i.e. ZIP, ARJ, TXT)
  14.  
  15. Syntax to Split files
  16. =====================
  17.  
  18. The syntax to split a large file is quite easy. Just type:
  19.  
  20.   "rzsplit -s <filename> <size> [drive]"
  21.  
  22. -s         = Means you want to Split the file
  23. <filename> = The DOS file you want to split.
  24.  
  25. Sizes:
  26. ------
  27. [288]   = 2.8M 
  28. [144]   = 1.4M 
  29. [12]    = 1.2M 
  30. [720]   = 720K 
  31. [360]   = 360K 
  32.  
  33. [drive] = Destination Drive to write out split files to (ex. "a:")  
  34.           This parameter is optional.  If no letter is given it will
  35.           use the default disk drive.
  36.  
  37.  
  38. For example, say the file "altersnd.zip" is 1,600,000 bytes. You would
  39. like to split this into 2 files on disk.  Type:
  40.  
  41. "rzsplit -s altersnd.zip 144 a:"
  42.  
  43. ------------------------------------------------------------------
  44. RZSplit creating Split files..
  45.  
  46. Writing out: a:altersnd.001     --\ These are called "split files",
  47. Writing out: a:altersnd.002     --/ and they are 1.4M or smaller.
  48.  
  49. RZSplit Finished.
  50. ------------------------------------------------------------------
  51.  
  52. After the 1st disk is full, it will ask you for the next disk.
  53. It will also let you know how many blank disks you need before you start.
  54.  
  55.  
  56. Syntax to Join files
  57. ====================
  58.  
  59. The syntax to build your original file is also quite easy. Just type:
  60.  
  61.   "rzsplit -b[d] <filename> [drive]"
  62.  
  63. -b         = You want to Build the file and keep "split files".
  64. -bd        = You want to Build the file and delete "split files". 
  65.              Note: RZsplit will NOT delete "split files" if the [drive]
  66.              parameter is either "a:" or "b:".
  67.  
  68. <filename> = The DOS file you want to create. (WITHOUT THE EXTENSION)
  69. [drive]    = Source drive to read split files (ex. "a:")
  70.              This parameter is optional.  If no letter is given it will
  71.              use the default disk drive.
  72.  
  73.  
  74. Now say you want to create your "altersnd.zip" file by using your
  75. "split files". If you want your "split files" deleted, use the "-bd" option.
  76. Make sure ALL your "split files" are in your current directory or on disk, 
  77. and type:
  78.  
  79. ------------------------------------------------------------------
  80. C:> rzsplit -b altersnd a:
  81.  
  82. RZSplit creating Original file 'altersnd.zip'.
  83.  
  84. Reading: a:altersnd.001
  85. Reading: a:altersnd.002
  86.  
  87. RZSplit Finished.
  88. ------------------------------------------------------------------
  89.  
  90. Again RZSPLIT will prompt you for each disk if you entered a: or b: for
  91. the [drive] parameter.  The Built file will be written in your current 
  92. directory.
  93.  
  94.  
  95. NOTE: The "split files" written in a previous version of RZSPLIT will
  96.       NOT work with version 1.4.
  97.  
  98.  
  99. LEGAL STUFF
  100. ===========
  101.  
  102. The programmer cannot accept responsibility for any damages that may be
  103. incurred by the use of RZSPLIT.
  104.  
  105. This program is FREEWARE and may be copied and distributed without charge
  106. and without further permission to anyone and everyone.  I would love to see
  107. thousands, even millions of people use this program.  This program must not
  108. be sold for profit.  It may be included with other products, commercial or
  109. otherwise, as long as this text file is included, and both it and the
  110. program are not modified in any way.
  111.  
  112.  
  113. Revision Notes
  114. ==============
  115.  
  116.  06/08/94 - Initial Release (version 1.0).
  117.  10/21/94 - Version 1.1.  Improved on the documentation, added ability
  118.             to delete or keep the "split files".
  119.  10/23/94 - Version 1.2.  Increased speed of file access by changing
  120.             the buffer size from 1K to 8194K.
  121.  10/27/94 - Version 1.3.  Added more error checking code, and changed
  122.             buffer size to 4096K, to fit more on each floppy.
  123.  11/01/94 - Version 1.4.  Changed format of Split Files to include
  124.             file size of the original file. This is useful because now
  125.             I now if the re-created file does not match the original file,
  126.             there is a problem.
  127.  01/19/95 - Version 1.6.  (v1.5 never released). Fixed file permissions 
  128.         when creating split files. 
  129.  01/28/95 - Version 1.7.  Improved error messages if Split files were corrupt.
  130.             Also added logic not to do anything if file to be split was 
  131.             smaller than the requested size.
  132.  02/25/95 - Version 1.9. (v1.8 never released).  Added code to handle files
  133.             for the new Microsoft 1.7M format (DMF).                 
  134.  03/01/95 - Version 2.0.  Added floppy usage, and took out 1.7M format.
  135.  03/09/95 - Version 2.1.  Fixed bug where ver 2.0 did not work with upper 
  136.             case drive letters.  Also added some logic to verify that if
  137.             the program was not the correct byte size not to execute at all.
  138.             Fixed bug in build process, if file .002 or higher did not exist.
  139.             
  140. Written by R. Zino in Turbo C++.  I can be reached at "rjz@indcomp.com"
  141. for comments/questions.
  142.  
  143. -EOF-
  144.